type hash/crc32.digest
12 uses
hash/crc32 (current package)
crc32.go#L136: type digest struct {
crc32.go#L150: return &digest{0, tab}
crc32.go#L160: func (d *digest) Size() int { return Size }
crc32.go#L162: func (d *digest) BlockSize() int { return 1 }
crc32.go#L164: func (d *digest) Reset() { d.crc = 0 }
crc32.go#L171: func (d *digest) AppendBinary(b []byte) ([]byte, error) {
crc32.go#L178: func (d *digest) MarshalBinary() ([]byte, error) {
crc32.go#L183: func (d *digest) UnmarshalBinary(b []byte) error {
crc32.go#L197: func (d *digest) Clone() (hash.Cloner, error) {
crc32.go#L223: func (d *digest) Write(p []byte) (n int, err error) {
crc32.go#L230: func (d *digest) Sum32() uint32 { return d.crc }
crc32.go#L232: func (d *digest) Sum(in []byte) []byte {
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |